473L Query - définition. Qu'est-ce que 473L Query
Diclib.com
Dictionnaire ChatGPT
Entrez un mot ou une phrase dans n'importe quelle langue 👆
Langue:

Traduction et analyse de mots par intelligence artificielle ChatGPT

Sur cette page, vous pouvez obtenir une analyse détaillée d'un mot ou d'une phrase, réalisée à l'aide de la meilleure technologie d'intelligence artificielle à ce jour:

  • comment le mot est utilisé
  • fréquence d'utilisation
  • il est utilisé plus souvent dans le discours oral ou écrit
  • options de traduction de mots
  • exemples d'utilisation (plusieurs phrases avec traduction)
  • étymologie

Qu'est-ce (qui) est 473L Query - définition

FEATURE TO EFFICIENTLY EXECUTE QUERIES EFFICIENTLY IN DBMS SOFTWARES
Query optimizer; Cost-based query optimizer; Query optimisation; Query planner

473L Query         
473L Query; 473L Query programming language; 473L Query programming; 473L Query language; 473L Query (programming language); 473L Query (language); 473L system; 473L
<language> An English-like query language for the US Air Force 473L system. [Sammet 1969, p. 665]. ["Headquarters USAF Command and Control System Query Language", Info Sys Sci, Proc 2nd Congress, Spartan Books 1965, pp.57-76]. (1994-10-31)
IBM 473L Command and Control System         
473L Query; 473L Query programming language; 473L Query programming; 473L Query language; 473L Query (programming language); 473L Query (language); 473L system; 473L
The IBM 473L Command and Control System (473L System, 473L colloq.) was a USAF Cold War "Big L" Support System with computer equipment at The Pentagon and, in Pennsylvania, the Alternate National Military Command Center nuclear bunker.
database query language         
COMPUTER LANGUAGE USED TO MAKE QUERIES INTO DATABASES AND INFORMATION SYSTEMS SUCH AS SQL OR XQUERY
Database query language; Information retrieval query language; Query languages; Query structure; Relational database querying; List of query languages; List of data query languages; List of database query languages
<database> A language in which users of a database can (interactively) formulate requests and generate reports. The best known is SQL. (1998-04-15)

Wikipédia

Query optimization

Query optimization is a feature of many relational database management systems and other databases such as NoSQL and graph databases. The query optimizer attempts to determine the most efficient way to execute a given query by considering the possible query plans.

Generally, the query optimizer cannot be accessed directly by users: once queries are submitted to the database server, and parsed by the parser, they are then passed to the query optimizer where optimization occurs. However, some database engines allow guiding the query optimizer with hints.

A query is a request for information from a database. It can be as simple as "find the address of a person with Social Security number 123-45-6789," or more complex like "find the average salary of all the employed married men in California between the ages 30 to 39 who earn less than their spouses." The result of a query is generated by processing the rows in a database in a way that yields the requested information. Since database structures are complex, in most cases, and especially for not-very-simple queries, the needed data for a query can be collected from a database by accessing it in different ways, through different data-structures, and in different orders. Each different way typically requires different processing time. Processing times of the same query may have large variance, from a fraction of a second to hours, depending on the chosen method. The purpose of query optimization, which is an automated process, is to find the way to process a given query in minimum time. The large possible variance in time justifies performing query optimization, though finding the exact optimal query plan, among all possibilities, is typically very complex, time-consuming by itself, may be too costly, and often practically impossible. Thus query optimization typically tries to approximate the optimum by comparing several common-sense alternatives to provide in a reasonable time a "good enough" plan which typically does not deviate much from the best possible result.